home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / memory / ems40v11.zip / EMS40.DOC < prev    next >
Text File  |  1989-05-23  |  2KB  |  45 lines

  1.  
  2. EMS40.SYS
  3. Device Driver
  4.  
  5. Douglas Boling
  6. 1989 No. 12 (Utilities)
  7.  
  8.  
  9. Purpose:    A device driver that emulates the Lotus/Intel/Microsoft Expanded
  10. Memory Specification, Version 4.0, in software, permitting extended memory in
  11. AT-class machines to be used as expanded memory.
  12.  
  13. Format:    DEVICE=[d:\][path\]EMS40.SYS [nnn]
  14.     
  15. Remarks:    EMS40.SYS is installed by being listed in the CONFIG.SYS file. 
  16. The drive and path information must be supplied if needed by DOS to find the
  17. driver at boot-up.  Once installed, EMS40.SYS cannot be removed from memory
  18. without rebooting.
  19.  
  20.     The optional nnn parameter allows the user to specify the amount of
  21. extended memory, in KB, that will be used as expanded memory by EMS40.SYS.  If
  22. omitted, the default value is 384 KB.  By setting nnn to a smaller value than
  23. that of the extended memory installed, space can be reserved for extended memory
  24. programs such as VDISK.
  25.  
  26.     EMS40.SYS maps extended memory into four contiguous 16 KB pages in
  27. conventional DOS memory, permitting access to large spreadsheets and other data
  28. that would otherwise result in a "Memory Full" error.  While not as fast in
  29. operation as a dedicated LIM/EMS board and driver, it implements, within the
  30. limitions of a software emulation, all 28 functions specified in LIM/EMS 4.0. 
  31. (It does not attempt to emulate the DMA functions included in Function 28,
  32. Alternate Map Register Set, however.)
  33.  
  34.     Available for downloading from PC MagNet (see the EMS40 by Modem sidebar
  35. in the main article), EMS40.SYS is already compiled and ready to run.  As an
  36. alternative, EMS40.SYS can be created from either of two program files that are
  37. printed in the article and are also available for downloading from PC MagNet. 
  38. EMS40.BAS will automatically create EMS40.SYS when run once in BASIC.  To create
  39. EMS40.SYS from the EMS40.ASM source code requires use of a macro assembler (IBM
  40. or Microsoft, Version 2 or later) and the following commands:
  41.  
  42. MASM EMS40;
  43. LINK EMS40;
  44. EXE2BIN EMS40 EMS40.SYS;
  45. «MDNM»